blob: 59bec55a340375f2810c145125352cfdc17edcb0 (
plain)
1
2
3
4
5
6
7
8
9
10
|
import { redirect } from "next/navigation"
export default async function ProjectDocuListRulePage({
params,
}: {
params: Promise<{ lng: string; projectId: string }>
}) {
const { lng, projectId } = await params
redirect(`/${lng}/evcp/docu-list-rule/${projectId}/document-class`)
}
|